home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
352_01
/
lcempty.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1991-04-22
|
288b
|
15 lines
// LCempty.cpp contains code for testing for empty linked lists.
// part of LinkClass:: routines.
#include <stdlib.h>
#include <alloc.h>
#include <iostream.h>
#include "wtwg.h"
#include "dblib.h"
int LinkClass::isEmpty ()
{
return (nx==this || nx==NULL);
}